ia64: fix domain restore
authorKeir Fraser <keir.fraser@citrix.com>
Wed, 14 May 2008 12:25:19 +0000 (13:25 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Wed, 14 May 2008 12:25:19 +0000 (13:25 +0100)
A domain fails to restore on IA64 since cset 17524:18727843db60.
This patch fixes it temporarily. Guest CPUID configuration for IA64
might be implemented in the future.

Signed-off-by: Kouya Shimura <kouya@jp.fujitsu.com>
tools/python/xen/xend/image.py

index 72cdc042baab10cfbd5f0ac0300f23982cf3f5e5..237db8875ae0fd9c163add288626af91125e6a28 100644 (file)
@@ -720,6 +720,9 @@ class IA64_HVM_ImageHandler(HVMImageHandler):
                          (self.getRequiredInitialReservation() / 1024) ])
         return args
 
+    def setCpuid(self):
+        # Guest CPUID configuration is not implemented yet.
+        return
 
 class IA64_Linux_ImageHandler(LinuxImageHandler):